get NTFS support on Redhat 9.0

chris (2004-06-07 19:20:04)
4575 views
0 replies
Just a quick note on getting ntfs filesystem support for Redhat linux 9.0 - it's just a simple matter of installing an rpm. Here's a dump of the commands I just called to install the package:

cd /usr/src/redhat/RPMS/i386/   # doesn't really matter where you cd to
wget http://heanet.dl.sourceforge.net/sourceforge/linux-ntfs/kernel-ntfs-2.4.20-8.i686.rpm
rpm -ivh kernel-ntfs-2.4.20-8.i686.rpm

and here's a trace of what happened:

[root@kerenski i386]# wget http://heanet.dl.sourceforge.net/sourceforge/linux-ntfs/kernel-ntfs-2.4.20-8.i686.rpm
--19:27:15--  http://heanet.dl.sourceforge.net/sourceforge/linux-ntfs/kernel-ntfs-2.4.20-8.i686.rpm
           => `kernel-ntfs-2.4.20-8.i686.rpm'
Resolving heanet.dl.sourceforge.net... done.
Connecting to heanet.dl.sourceforge.net[193.1.219.87]:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 40,174 [application/x-redhat-package-manager]
 
100%[=================================================================================>] 40,174        49.98K/s    ETA 00:00
 
19:27:16 (49.98 KB/s) - `kernel-ntfs-2.4.20-8.i686.rpm' saved [40174/40174]

[root@kerenski i386]# rpm -ivh kernel-ntfs-2.4.20-8.i686.rpm
Preparing...                ########################################### [100%]
   1:kernel-ntfs            ########################################### [100%]
_______________________________________________________________________________
 
The Linux NTFS RPM has been successfully installed.
 
Please read the NTFS FAQ if you want to know how to:
 
 * Mount an NTFS partition
 * Change the permissions/ownership of a mounted NTFS partition
 * Automatically mount an NTFS partition
 
FAQ: http://linux-ntfs.sourceforge.net/info/ntfs.html
RPM: http://linux-ntfs.sourceforge.net/rpm/index.html
SRC: http://linux-ntfs.sourceforge.net/rpm/rpmsrc.html
_______________________________________________________________________________

Then all I need to do is mount /dev/hda1 /win/ to mount the ntfs partition into /win

christo
comment